home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_1 / ccrc32.zip / CRC.H < prev    next >
C/C++ Source or Header  |  1991-04-19  |  425b  |  19 lines

  1. /**********************************************************************
  2. * crc.h - 32 Bit CRC Header File For TriTel BBS 1.0
  3. *         Copyright (c) 1991 By Mark D. Goodwin
  4. **********************************************************************/
  5. #ifndef __CRCH__
  6. #define __CRCH__
  7.  
  8. // function prototype
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. unsigned long crc32(char *s);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16.  
  17. #endif
  18.  
  19.